home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / mail / sendmail / sendmail-5.65c+IDA-1.4.4.1 / uiuc / RCS / messages.h,v next >
Encoding:
Text File  |  1991-06-25  |  4.0 KB  |  111 lines

  1. head    1.1;
  2. access;
  3. symbols
  4.     RELEASE:1.1;
  5. locks; strict;
  6. comment    @ * @;
  7.  
  8.  
  9. 1.1
  10. date    91.03.18.15.38.00;    author paul;    state Exp;
  11. branches;
  12. next    ;
  13.  
  14.  
  15. desc
  16. @UIUC-specific messages for phquery.
  17. @
  18.  
  19.  
  20. 1.1
  21. log
  22. @Initial revision
  23. @
  24. text
  25. @/*
  26.  * Copyright (c) 1989 Paul Pomes
  27.  * Copyright (c) 1989 University of Illinois Board of Trustees
  28.  * All rights reserved.
  29.  *
  30.  * Redistribution and use in source and binary forms are permitted
  31.  * provided that the above copyright notice and this paragraph are
  32.  * duplicated in all such forms and that any documentation,
  33.  * advertising materials, and other materials related to such
  34.  * distribution and use acknowledge that the software was developed
  35.  * by the University of Illinois, Urbana.  In addition, redistribution
  36.  * and use must conform to the terms listed in the CopyLeft text below.
  37.  *
  38.  * The name of the University may not be used to endorse or promote products
  39.  * derived from this software without specific prior written permission.
  40.  *
  41.  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
  42.  * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
  43.  * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  44.  *
  45.  * @@(#)$Header$
  46.  */
  47.  
  48. /* Messages for ErrorReturn().  How simple, yet stupid, do we have to be? */
  49.  
  50. char    *NoMatchMsg[] = {
  51.  " The message, \"No matches to nameserver query,\" is generated whenever",
  52.  " the ph nameserver fails to locate either a ph alias or name field that",
  53.  " matches the supplied name.  The usual causes are typographical errors or",
  54.  " the use of nicknames.  Recommended action is to use the ph program to",
  55.  " determine the correct ph alias for the individuals addressed.  If ph is",
  56.  " not available, try sending to the most explicit form of the name, e.g.,",
  57.  " if mike-fox fails, try michael-j-fox.",
  58.  " ",
  59.  NULL
  60. };
  61.  
  62. char    *MultiMsg[] = {
  63.  " The message, \"Multiple matches found for nameserver query,\" is generated",
  64.  " whenever the ph nameserver finds multiple matches for the supplied name.",
  65.  " The steering philosophy is that mail should be delivered only to the",
  66.  " addressed individual.  Since the supplied information is insufficient",
  67.  " to locate a specific individual, your message is being returned.",
  68.  " To help you locate the correct individual, selected fields from the",
  69.  " possible matches are included below.  The alias field is the only one",
  70.  " guaranteed unique within a given ph community.",
  71.  " ",
  72.  NULL
  73. };
  74.  
  75. char    *TooManyMsg[] = {
  76.  " The message, \"Too many matches found to nameserver query,\" is generated",
  77.  " whenever the supplied name or alias matched over twenty ph nameserver",
  78.  " entries.  In this case no information will be returned about possible",
  79.  " matches.  Recommended action is to supply more specific names, e.g.,",
  80.  " john-b-smith instead of john-smith, or use the per-person unique ph alias.",
  81.  " You may have thought that you had used a ph alias and not a name.  This is",
  82.  " an artifact of the address resolution process.  If the address fails as an",
  83.  " alias, it is retried first as a callsign and then as a name.  While aliases",
  84.  " are guaranteed unique, names can match multiple individuals depending on",
  85.  " how common the name is.",
  86.  " ",
  87.  NULL
  88. };
  89.  
  90. char    *AbsentMsg[] = {
  91.  " The message, \"E-mail field not present in nameserver entry,\" is generated",
  92.  " whenever the ph nameserver matched the supplied name or alias with an",
  93.  " entry that lacked an email address field.  In this case no delivery can",
  94.  " be made.  Recommended action is to contact the individual by alternate",
  95.  " means via the information included below.  If the individual already has",
  96.  " an email address, s/he should edit their ph entry to include it.",
  97.  " ",
  98.  NULL
  99. };
  100.  
  101. char    *PhoneMsg[] = {
  102.  " A note regarding phone numbers: the UIUC area code is 217.  There are three",
  103.  " exchanges used by UIUC: 333, 332, and 244.  UIUC phone numbers are often",
  104.  " abbreviated by omitting the first two digits of the exchange.  Thus the",
  105.  " example phone number 3-6262 can be reached by dialing 1 217 333 6262.",
  106.  " ",
  107.  NULL
  108. };
  109.  
  110. @
  111.